This forum is closed to new posts and
responses. Individual names altered for privacy purposes. The information contained in this website is provided for informational purposes only and should not be construed as a forum for customer support requests. Any customer support requests should be directed to the official HCL customer support channels below:
~Lorraine Desgerothernivu 27.Nov.03 10:14 AM a Web browser Applications Development6.0.2 CF2Windows 2000
With an agent I collect information from documents(A) in a database and put them in a RTItem in another document(B). Then I deletet the document(A).
The loop over the collection looks like this
Dim doc as NotesDocument
Set doc = col.getFirstDocument
While not(doc is nothing)
...
...
...
Dim delDoc = doc
Set doc = col.GetNextDocument(doc)
delDoc.Remove(true)
Wend
On the last line I get the error 'Field too large (32K) or View's column and selection formulas are too large'. I do not get error with by all documents(A):
Does anybody now why I get this error when I remove a document form a database?